const currentDate = new Date(); console.log(`Current Date and Time: ${currentDate}`);
func contain(target int, arr []int) bool { for _, v := range arr { if v == target { return true
type MyStack struct { values []int len int } func Constructor() MyStack { var stack MyStack return stack }
#Check the given string, number or list is palindrome or not. def is_palindrome(n: int) -> bool: r = 0 t = n while
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met
<?php session_start(); ?> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="">SabkaCo
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
# 50 Projects in 50 Days - HTML/CSS and JavaScript This is the main repository for all of the projects in the course. -
TESTCCASES = [ { "positional": (25, 5), "keyword": {}, "return": True, "msg": "", },
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>P
func sumOfUnique(nums []int) int { var sum int = 0; for i := 0; i < len(nums); i++ { var u bool = true
SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary;
/** * @param {number} n * @return {Function} counter */ var createCounter = function(n) { let count = n; return
// delete element <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=
<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=
// program to check if a number is prime or not // take input from the user const number = parseInt(prompt("Enter a positive
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>N
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia
/** * @param {string} s * @return {character} */ var repeatedCharacter = function(s) { seen = []; for (let i=0;
<?php //for connection to database $servername = "localhost"; $username = "root"; $password = ""; //create
func nextGreaterElement(nums1 []int, nums2 []int) []int { var ans []int for _, n := range nums1 { f := false g := -
* **Information:** I can provide you with information on a wide range of topics, including current events, history, science, an
<!DOCTYPE html> <html> <head> <title>My Unique Demo Page</title> <style> body { font-family: "
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html> <head> <title>Continuous Fade In and Out Animation with CSS</title> <style> /* Custo
/** * @return {Function} */ var createHelloWorld = function() { return function(...args) { return "Hell
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Armstrong Checker in JavaScript</ti
# Write your MySQL query statement below SELECT * FROM patients WHERE conditions LIKE '% DIAB1%' or conditions LIKE 'DIAB1%' ;
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia
<!--conferm-delete.html--> <h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1> {% if file.type in
<h1>Welcome to HTMLify</h1> <p>Here you can share you codes :)<br>And HTML can be parse so you can make your static site here
<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
func sumOfGoodNumbers(nums []int, k int) int { var sum int for i, _ := range nums { var good bool = true
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>L
def char_frequency(string): freq = {} for c in string: freq[c] = freq.get(c,0)+1 return freq
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
// Detect Instagram click document.getElementById("insta-link").addEventListener("click", function() {
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"
<?php $name = 'SabkaCode'; echo $name; //simple print name echo "\n"; echo "The length of string ".strlen($name
<?php //for read the file readfile('yoursfile.txt'); //for only read the file echo readfile('yoursfil
impl Solution { pub fn is_same_after_reversals(num: i32) -> bool { if (num != 0){ return num % 10 !=
<HTML> <HEAD> <TITLE>style sheets</TITLE> <style type="text/css"> table,td,th{Border-style:solid;Border-width:4;Border-color
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:
<!DOCTYPE html> <html> <head> <title>Editing - updates/preview-feature.html</title> <meta name="viewport" content="wi
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:
def pow(x, y: int): p = 1 while y: p *= x y -= 1 return p def pow(x, y): return x ** y
func maxDepth(s string) int { var depth, max_depth int for _, c := range s { if c == '(' { depth
<?php //dates in php echo date("d"). "\n"; //Print date of today : 24 echo date("j"). "\n"; //Print dat
class Solution: def reverseVowels(self, s: str) -> str: rvs = "" for c in s[::-1]: if c in "
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S
/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Cards</title> <meta name="view
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width
/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree
<?php $name = "Dj"; //String $salary = 5000000; //Interger $experience = 1.5; //Float $bonus = "50.25k";//Decim
<!DOCTYPE html> <html> <head> <title>Bootstrap Modal Demo</title> <!-- Include Bootstrap CSS from a CDN --> <li
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Rotating Spring Loop</title> <style> bod
<script> location.href="https://dj.000.pe" </script>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,
<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; width: 100%; border: 1
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
**1. Knowledge and Expertise Exchange:** * Establish regular webinars or workshops to share research findings, industry insigh
<!DOCTYPE html> <html> <head> <meta name="viewpor" content="width=device-width, initial-scale=1.0"> <title>IPChat</tit
<!-- file-uplaod.html --> <form action="/action/upload" method="POST" enctype="multipart/form-data"> <input type="file" name="fi
/** * Forward declaration of guess API. * @param num your guess * @return -1 if num is higher than the picked nu
func numberOfEmployeesWhoMetTarget(hours []int, target int) int { var ans int for _, hour := range hours { if
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
func abs(n int) int { if n < 0 { return -n } return n } func makeGood(s string) string { var stac
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
/** * @param {string} val * @return {Object} */ var expect = function(val) { return {"toBe": function (v
<!DOCTYPE html> <html> <head> <title>My Second Webpage</title> <!-- Internal CSS --> <style> /* Her
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
if __name__ == '__main__': n = int(input()) for i in range(1,n+1): print(i,end="")
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
class Solution: def makeFancyString(self, s: str) -> str: for c in set(s): while c*3 in s:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>J
<?php // session_start(); // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ // header('location:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
#include <iostream> using namespace std; int main() { int n; cout << "Enter an integer: "; cin >> n; if ( n
class KthLargest: def __init__(self, k: int, nums: List[int]): self.values = sorted(nums) self.k = k
/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Three Number Game</title> <link rel="stylesheet" hr
SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';
class Solution: def uncommonFromSentences(self, s1: str, s2: str) -> List[str]: uncommon_words = [] s1 =
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>split</title> </head> <body> <div> <nav> <h1
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=
<?php if($_SERVER['REQUEST_METHOD'] == 'GET'){//if (isset($_GET)){ $name = $_GET['name']; $email = $_GET['em
class Solution: def checkDistances(self, s: str, distance: List[int]) -> bool: for l in sorted(set(s)):
var createCounter = function(n) { let c = n; return function() { return c++; }; };
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia
class Solution: def findCenter(self, edges: List[List[int]]) -> int: flat = set() for l in edges[:3]:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in
func findFinalValue(nums []int, original int) int { for ;true; { f := false for _, n := range nums {
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>M
<?php if($_SERVER['REQUEST_METHOD'] == 'POST'){//if (isset($_POST)){ $name = $_POST['name']; $email = $_POST
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 03 Example</title> <me
impl Solution { pub fn fib(n: i32) -> i32 { if (n == 0){ return 0; } if (n == 1){
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in