HTMLify your dreams

Filter Options:
display-date-and-time.js | Owner: demo | Views: 224 | Comments: 0 | Open/ Source 86 B

const currentDate = new Date(); console.log(`Current Date and Time: ${currentDate}`);

LeetCode - Intersection of Two Arrays - Go | Owner: abh | Views: 94 | Comments: 0 | Open/ Source 387 B

func contain(target int, arr []int) bool { for _, v := range arr { if v == target { return true

Last.html | Owner: amar | Views: 15 | Comments: 1 | Open/ Source 3.62 KB

LeetCode - Implement Stack using Queues - Go | Owner: abh | Views: 98 | Comments: 0 | Open/ Source 715 B

type MyStack struct { values []int len int } func Constructor() MyStack { var stack MyStack return stack }

is_palindrome.py | Owner: abh | Views: 268 | Comments: 0 | Open/ Source 606 B

#Check the given string, number or list is palindrome or not. def is_palindrome(n: int) -> bool: r = 0 t = n while

index.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 425 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met

nav.php | Owner: djdj | Views: 247 | Comments: 0 | Open/ Source 3.86 KB

<?php session_start(); ?> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="">SabkaCo

index.html | Owner: cody | Views: 245 | Comments: 0 | Open/ Source 12.99 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam

index.html | Owner: cody | Views: 239 | Comments: 0 | Open/ Source 2.3 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

README.md | Owner: cody | Views: 2 | Comments: 0 | Open/ Source 12.79 KB

# 50 Projects in 50 Days - HTML/CSS and JavaScript This is the main repository for all of the projects in the course. -

is_divisible_by.py | Owner: abh | Views: 219 | Comments: 0 | Open/ Source 750 B

TESTCCASES = [ { "positional": (25, 5), "keyword": {}, "return": True, "msg": "", },

index.html | Owner: cody | Views: 167 | Comments: 0 | Open/ Source 422 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>P

LeetCode - Sum of Unique Elements - Go | Owner: abh | Views: 115 | Comments: 0 | Open/ Source 461 B

func sumOfUnique(nums []int) int { var sum int = 0; for i := 0; i < len(nums); i++ { var u bool = true

Q181_Employees_Earning_More_Than_Their_Managers.sql | Owner: djdj | Views: 291 | Comments: 0 | Open/ Source 104 B

SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary;

LeetCode - Counter - JavaScript | Owner: abh | Views: 193 | Comments: 0 | Open/ Source 289 B

/** * @param {number} n * @return {Function} counter */ var createCounter = function(n) { let count = n; return

deleteElement.html | Owner: shubh | Views: 285 | Comments: 0 | Open/ Source 924 B

// delete element <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=

index.html | Owner: cody | Views: 200 | Comments: 0 | Open/ Source 718 B

<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=

check-prime.js | Owner: demo | Views: 183 | Comments: 0 | Open/ Source 787 B

// program to check if a number is prime or not // take input from the user const number = parseInt(prompt("Enter a positive

index.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 476 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>N

index.html | Owner: cody | Views: 248 | Comments: 0 | Open/ Source 1.62 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

LeetCode - First Letter to Appear Twice - JavaScript | Owner: abh | Views: 203 | Comments: 0 | Open/ Source 241 B

/** * @param {string} s * @return {character} */ var repeatedCharacter = function(s) { seen = []; for (let i=0;

MySqL-Database.php | Owner: djdj | Views: 266 | Comments: 0 | Open/ Source 672 B

<?php //for connection to database $servername = "localhost"; $username = "root"; $password = ""; //create

LeetCode - Next Greater Element I - Go | Owner: abh | Views: 80 | Comments: 0 | Open/ Source 291 B

func nextGreaterElement(nums1 []int, nums2 []int) []int { var ans []int for _, n := range nums1 { f := false g := -

30.txt | Owner: coderai | Views: 203 | Comments: 0 | Open/ Source 1.81 KB

* **Information:** I can provide you with information on a wide range of topics, including current events, history, science, an

webpage2.html | Owner: demo | Views: 293 | Comments: 0 | Open/ Source 1.71 KB

<!DOCTYPE html> <html> <head> <title>My Unique Demo Page</title> <style> body { font-family: "

hex.html | Owner: cody | Views: 246 | Comments: 0 | Open/ Source 999 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

| Owner: itintern | Views: 63 | Comments: 0 | Open/ Source 10.54 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

css3.html | Owner: demo | Views: 326 | Comments: 0 | Open/ Source 949 B

<!DOCTYPE html> <html> <head> <title>Continuous Fade In and Out Animation with CSS</title> <style> /* Custo

LeetCode - Create Hello World Function - JavaScript | Owner: abh | Views: 200 | Comments: 0 | Open/ Source 220 B

/** * @return {Function} */ var createHelloWorld = function() { return function(...args) { return "Hell

index.html | Owner: cody | Views: 209 | Comments: 0 | Open/ Source 708 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Armstrong Checker in JavaScript</ti

LeetCode - Patients With a Condition - MySQL | Owner: abh | Views: 308 | Comments: 4 | Open/ Source 128 B

# Write your MySQL query statement below SELECT * FROM patients WHERE conditions LIKE '% DIAB1%' or conditions LIKE 'DIAB1%' ;

Contact.html | Owner: djdj | Views: 34 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

conferm-delete.html | Owner: abh | Views: 290 | Comments: 0 | Open/ Source 466 B

<!--conferm-delete.html--> <h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1> {% if file.type in

welcome.html | Owner: abh | Views: 478 | Comments: 0 | Open/ Source 499 B

<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

birth-certificate-template-upabh.html | Owner: djdj | Views: 0 | Comments: 0 | Open/ Source 199.21 KB

<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o

DBMS Assignment | Owner: djdj | Views: 1018 | Comments: 0 | Open/ Source 5.76 MB

index.html | Owner: cody | Views: 228 | Comments: 0 | Open/ Source 1.39 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

LeetCode - Sum of Good Numbers - Go | Owner: abh | Views: 126 | Comments: 0 | Open/ Source 450 B

func sumOfGoodNumbers(nums []int, k int) int { var sum int for i, _ := range nums { var good bool = true

index.html | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 1.28 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>L

char_frequency.py | Owner: abh | Views: 244 | Comments: 0 | Open/ Source 113 B

def char_frequency(string): freq = {} for c in string: freq[c] = freq.get(c,0)+1 return freq

index.html | Owner: cody | Views: 242 | Comments: 0 | Open/ Source 2.68 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Ronaldo.html | Owner: amar | Views: 109 | Comments: 0 | Open/ Source 1022 B

// Detect Instagram click document.getElementById("insta-link").addEventListener("click", function() {

index.html | Owner: cody | Views: 234 | Comments: 0 | Open/ Source 1.05 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"

String.php | Owner: djdj | Views: 232 | Comments: 0 | Open/ Source 1.28 KB

<?php $name = 'SabkaCode'; echo $name; //simple print name echo "\n"; echo "The length of string ".strlen($name

Files.php | Owner: djdj | Views: 312 | Comments: 0 | Open/ Source 1.0 KB

<?php //for read the file readfile('yoursfile.txt'); //for only read the file echo readfile('yoursfil

LeetCode - A Number After a Double Reversal - Rust | Owner: abh | Views: 317 | Comments: 0 | Open/ Source 203 B

impl Solution { pub fn is_same_after_reversals(num: i32) -> bool { if (num != 0){ return num % 10 !=

pri2.html | Owner: priyanka | Views: 341 | Comments: 0 | Open/ Source 807 B

<HTML> <HEAD> <TITLE>style sheets</TITLE> <style type="text/css"> table,td,th{Border-style:solid;Border-width:4;Border-color

index_socials.html | Owner: cody | Views: 221 | Comments: 0 | Open/ Source 2.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:

preview feature | Owner: abh | Views: 754 | Comments: 1 | Open/ Source 5.59 KB

<!DOCTYPE html> <html> <head> <title>Editing - updates/preview-feature.html</title> <meta name="viewport" content="wi

index.html | Owner: cody | Views: 228 | Comments: 0 | Open/ Source 796 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 265 | Comments: 0 | Open/ Source 10.25 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:

pow.py | Owner: abh | Views: 304 | Comments: 0 | Open/ Source 120 B

def pow(x, y: int): p = 1 while y: p *= x y -= 1 return p def pow(x, y): return x ** y

LeetCode - Maximum Nesting Depth of the Parentheses - Go | Owner: abh | Views: 85 | Comments: 0 | Open/ Source 302 B

func maxDepth(s string) int { var depth, max_depth int for _, c := range s { if c == '(' { depth

Dates.php | Owner: djdj | Views: 291 | Comments: 0 | Open/ Source 1.18 KB

<?php //dates in php echo date("d"). "\n"; //Print date of today : 24 echo date("j"). "\n"; //Print dat

LeetCode | Reverse Vowels of a String | Python | Owner: abh | Views: 179 | Comments: 0 | Open/ Source 371 B

class Solution: def reverseVowels(self, s: str) -> str: rvs = "" for c in s[::-1]: if c in "

index.html | Owner: cody | Views: 219 | Comments: 0 | Open/ Source 1.03 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 1.08 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S

LeetCode - Binary Tree Postorder Traversal - Go | Owner: abh | Views: 80 | Comments: 0 | Open/ Source 446 B

/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree

index.html | Owner: cody | Views: 257 | Comments: 0 | Open/ Source 5.19 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Cards</title> <meta name="view

index.html | Owner: cody | Views: 198 | Comments: 0 | Open/ Source 1.07 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 169 | Comments: 0 | Open/ Source 658 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

auto text effect | Owner: cody | Views: 214 | Comments: 0 | Open/ Source 511 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

LeetCode - Path Sum - Go | Owner: abh | Views: 64 | Comments: 0 | Open/ Source 671 B

/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree

Data-Types.php | Owner: djdj | Views: 133 | Comments: 0 | Open/ Source 969 B

<?php $name = "Dj"; //String $salary = 5000000; //Interger $experience = 1.5; //Float $bonus = "50.25k";//Decim

bs3.html | Owner: demo | Views: 337 | Comments: 0 | Open/ Source 1.86 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Modal Demo</title> <!-- Include Bootstrap CSS from a CDN --> <li

Spring Loder | Owner: djdj | Views: 27 | Comments: 0 | Open/ Source 1.65 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Rotating Spring Loop</title> <style> bod

redirect.js | Owner: djdj | Views: 330 | Comments: 0 | Open/ Source 54 B

<script> location.href="https://dj.000.pe" </script>

quiz.html | Owner: cody | Views: 206 | Comments: 0 | Open/ Source 2.52 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

Spotify Clone | Owner: cody | Views: 0 | Comments: 0 | Open/ Source 5.41 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,

Nested Tables | Owner: cody | Views: 281 | Comments: 0 | Open/ Source 1.04 KB

<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; width: 100%; border: 1

index.html | Owner: cody | Views: 199 | Comments: 0 | Open/ Source 636 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

58.txt | Owner: coderai | Views: 250 | Comments: 0 | Open/ Source 2.08 KB

**1. Knowledge and Expertise Exchange:** * Establish regular webinars or workshops to share research findings, industry insigh

chat.html | Owner: djdj | Views: 234 | Comments: 0 | Open/ Source 6.0 KB

<!DOCTYPE html> <html> <head> <meta name="viewpor" content="width=device-width, initial-scale=1.0"> <title>IPChat</tit

file-upload.html | Owner: abh | Views: 301 | Comments: 0 | Open/ Source 258 B

<!-- file-uplaod.html --> <form action="/action/upload" method="POST" enctype="multipart/form-data"> <input type="file" name="fi

LeetCode - Guess Number Higher or Lower - Go | Owner: abh | Views: 95 | Comments: 0 | Open/ Source 543 B

/** * Forward declaration of guess API. * @param num your guess * @return -1 if num is higher than the picked nu

LeetCode - Number of Employees Who Met the Target - Go | Owner: abh | Views: 102 | Comments: 0 | Open/ Source 201 B

func numberOfEmployeesWhoMetTarget(hours []int, target int) int { var ans int for _, hour := range hours { if

PY0B T3 | Owner: itintern | Views: 5 | Comments: 0 | Open/ Source 5.63 KB

<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

LeetCode - Make The String Great - Go | Owner: abh | Views: 84 | Comments: 0 | Open/ Source 400 B

func abs(n int) int { if n < 0 { return -n } return n } func makeGood(s string) string { var stac

index.html | Owner: cody | Views: 249 | Comments: 0 | Open/ Source 504 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

LeetCode - To Be Or Not To Be - JavaScript | Owner: abh | Views: 222 | Comments: 0 | Open/ Source 572 B

/** * @param {string} val * @return {Object} */ var expect = function(val) { return {"toBe": function (v

tx7w2Ayr.html | Owner: cody | Views: 306 | Comments: 0 | Open/ Source 3.14 KB

<!DOCTYPE html> <html> <head> <title>My Second Webpage</title> <!-- Internal CSS --> <style> /* Her

Git Magic | Owner: cody | Views: 283 | Comments: 0 | Open/ Source 2.59 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

T3 | Owner: itintern | Views: 9 | Comments: 0 | Open/ Source 6.36 KB

<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">

battery.html | Owner: dakshbadal1379 | Views: 292 | Comments: 0 | Open/ Source 1.8 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

python_print.py | Owner: djdj | Views: 302 | Comments: 0 | Open/ Source 104 B

if __name__ == '__main__': n = int(input()) for i in range(1,n+1): print(i,end="")

index.html | Owner: cody | Views: 199 | Comments: 0 | Open/ Source 2.02 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

demo | Owner: light | Views: 103 | Comments: 0 | Open/ Source 1.74 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

LeetCode - Delete Characters to Make Fancy String - Python | Owner: abh | Views: 126 | Comments: 0 | Open/ Source 176 B

class Solution: def makeFancyString(self, s: str) -> str: for c in set(s): while c*3 in s:

index.html | Owner: cody | Views: 227 | Comments: 0 | Open/ Source 2.49 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

lazy_loading | Owner: light | Views: 167 | Comments: 0 | Open/ Source 15.2 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 246 | Comments: 0 | Open/ Source 2.93 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 227 | Comments: 0 | Open/ Source 1.2 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

| Owner: djdj | Views: 191 | Comments: 1 | Open/ Source 28 B

<?php echo "hello abh"; ?>

index.html | Owner: cody | Views: 171 | Comments: 0 | Open/ Source 1.22 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>J

signup.php | Owner: djdj | Views: 203 | Comments: 0 | Open/ Source 6.33 KB

<?php // session_start(); // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ // header('location:

index.html | Owner: cody | Views: 226 | Comments: 0 | Open/ Source 1.22 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

check-odd-or-even.cpp | Owner: demo | Views: 329 | Comments: 0 | Open/ Source 224 B

#include <iostream> using namespace std; int main() { int n; cout << "Enter an integer: "; cin >> n; if ( n

LeetCode - Kth Largest Element in a Stream - Python | Owner: abh | Views: 101 | Comments: 0 | Open/ Source 711 B

class KthLargest: def __init__(self, k: int, nums: List[int]): self.values = sorted(nums) self.k = k

LeetCode - Binary Tree Inorder Traversal - Go | Owner: abh | Views: 91 | Comments: 0 | Open/ Source 439 B

/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *Tree

Mc | Owner: djdj | Views: 586 | Comments: 0 | Open/ Source 6.4 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 219 | Comments: 0 | Open/ Source 903 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Three Number Game</title> <link rel="stylesheet" hr

LeetCode - Recyclable and Low Fat Products - MySQL | Owner: abh | Views: 274 | Comments: 0 | Open/ Source 74 B

SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';

LeetCode - Uncommon Words from Two Sentences - Python | Owner: abh | Views: 109 | Comments: 0 | Open/ Source 446 B

class Solution: def uncommonFromSentences(self, s1: str, s2: str) -> List[str]: uncommon_words = [] s1 =

index.html | Owner: cody | Views: 171 | Comments: 0 | Open/ Source 389 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>C

index.html | Owner: cody | Views: 195 | Comments: 0 | Open/ Source 1.44 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Web Pdf Viewer | Owner: djdj | Views: 174 | Comments: 0 | Open/ Source 2.0 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

clock.html | Owner: djdj | Views: 587 | Comments: 0 | Open/ Source 4.28 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

split.html | Owner: cody | Views: 221 | Comments: 0 | Open/ Source 397 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>split</title> </head> <body> <div> <nav> <h1

wiki.html | Owner: cody | Views: 130 | Comments: 0 | Open/ Source 1.29 KB

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=

Get-Method.php | Owner: djdj | Views: 288 | Comments: 0 | Open/ Source 408 B

<?php if($_SERVER['REQUEST_METHOD'] == 'GET'){//if (isset($_GET)){ $name = $_GET['name']; $email = $_GET['em

LeetCode - Check Distances Between Same Letters - Python | Owner: abh | Views: 93 | Comments: 0 | Open/ Source 235 B

class Solution: def checkDistances(self, s: str, distance: List[int]) -> bool: for l in sorted(set(s)):

Q2620_Counter.js | Owner: djdj | Views: 200 | Comments: 0 | Open/ Source 103 B

var createCounter = function(n) { let c = n; return function() { return c++; }; };

index.html | Owner: cody | Views: 112 | Comments: 0 | Open/ Source 6.67 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

LeetCode - Find Center of Star Graph - Python | Owner: abh | Views: 111 | Comments: 0 | Open/ Source 409 B

class Solution: def findCenter(self, edges: List[List[int]]) -> int: flat = set() for l in edges[:3]:

Diagnosis | Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 4.76 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 217 | Comments: 0 | Open/ Source 480 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

LeetCode - Keep Multiplying Found Values by Two - Go | Owner: abh | Views: 111 | Comments: 0 | Open/ Source 462 B

func findFinalValue(nums []int, original int) int { for ;true; { f := false for _, n := range nums {

index.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 699 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>M

Post-Method.php | Owner: djdj | Views: 242 | Comments: 0 | Open/ Source 413 B

<?php if($_SERVER['REQUEST_METHOD'] == 'POST'){//if (isset($_POST)){ $name = $_POST['name']; $email = $_POST

index.html | Owner: cody | Views: 235 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

index.html | Owner: cody | Views: 237 | Comments: 0 | Open/ Source 5.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 565 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 235 | Comments: 0 | Open/ Source 7.67 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 03 Example</title> <me

LeetCode - Fibonacci Number - Rust | Owner: abh | Views: 316 | Comments: 1 | Open/ Source 354 B

impl Solution { pub fn fib(n: i32) -> i32 { if (n == 0){ return 0; } if (n == 1){

Manisha.html | Owner: amar | Views: 53 | Comments: 0 | Open/ Source 3.62 KB

test.html | Owner: priyanka | Views: 389 | Comments: 0 | Open/ Source 1.76 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

LeetCode - Sort the People - Python | Owner: abh | Views: 152 | Comments: 0 | Open/ Source 174 B

class Solution: def sortPeople(self, names: List[str], heights: List[int]) -> List[str]: return [names[heights.ind

Simple-Print.php | Owner: djdj | Views: 223 | Comments: 0 | Open/ Source 29 B

<?php echo 'hello dj'; ?>