HTMLify your dreams

Filter Options:
Meme.html | Owner: amar | Views: 79 | Comments: 0 | Open/ Source 7.74 KB

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

Todolist.html | Owner: tanishkak | Views: 325 | Comments: 0 | Open/ Source 771 B

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

check-leap-year.cpp | Owner: demo | Views: 226 | Comments: 0 | Open/ Source 650 B

#include <iostream> using namespace std; int main() { int year; cout << "Enter a year: "; cin >> year; // le

index_socials.html | Owner: cody | Views: 198 | Comments: 0 | Open/ Source 3.37 KB

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

ondblclick.html | Owner: shubh | Views: 224 | Comments: 0 | Open/ Source 587 B

// ondblclick event using inline event handling <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta na

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

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

Q43_Multiply_Strings.py | Owner: djdj | Views: 199 | Comments: 0 | Open/ Source 104 B

def multiply(self, num1, num2): num1 = int(num1) num2 = int(num2) a = num1 * num2 return str(a)

LeetCode - Word Pattern - Go | Owner: abh | Views: 32 | Comments: 0 | Open/ Source 838 B

func wordPattern(pattern string, s string) bool { var words []string mapping := make(map[rune]string) var lb int

write_a_function.py | Owner: djdj | Views: 209 | Comments: 0 | Open/ Source 94 B

def is_leap(year): leap = False return leap year = int(input()) print(is_leap(year))

bisection_method.py | Owner: djdj | Views: 263 | Comments: 0 | Open/ Source 709 B

from math import* def fun(x): return(x**3-4*x-9) def bisection(x0,x1): i=1 for _ in range(max): x2 =

LeetCode - Find the Maximum Achievable Number - Python | Owner: abh | Views: 61 | Comments: 0 | Open/ Source 106 B

class Solution: def theMaximumAchievableX(self, num: int, t: int) -> int: return num + (t*2)

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 870 B

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

contact us.html | Owner: sachinthakur | Views: 312 | Comments: 0 | Open/ Source 2.88 KB

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

index.html | Owner: djdj | Views: 72 | Comments: 0 | Open/ Source 1.14 KB

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

40.txt | Owner: coderai | Views: 159 | Comments: 0 | Open/ Source 1.15 KB

**Name:** CoderAI **Capabilities:** * **Code Generation:** Generates code snippets in various languages based on user-defined

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

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

index.html | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 4.56 KB

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

indev.html | Owner: dakshbadal1379 | Views: 213 | Comments: 0 | Open/ Source 2.11 KB

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

index.html | Owner: cody | Views: 90 | Comments: 0 | Open/ Source 2.07 KB

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

welcome.php | Owner: djdj | Views: 75 | Comments: 0 | Open/ Source 1.25 KB

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

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 7.28 KB

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

LeetCode - Find Champion I - Python | Owner: abh | Views: 241 | Comments: 1 | Open/ Source 340 B

class Solution: def findChampion(self, grid: List[List[int]]) -> int: n = len(grid) strongerthancount = [

index.html | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 536 B

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

Profile Card | Owner: cody | Views: 206 | Comments: 0 | Open/ Source 1.19 KB

<!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; display: flex; a

LootCode - Score of a String - Python | Owner: abh | Views: 73 | Comments: 0 | Open/ Source 269 B

class Solution: def scoreOfString(self, s: str) -> int: values = [] for c in s: values.appen

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 1.37 KB

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

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 8.37 KB

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

Q182_Duplicate_Emails.sql | Owner: djdj | Views: 240 | Comments: 0 | Open/ Source 65 B

select email from person group by email having count(email) > 1;

Bhawna-jadaun | Owner: djdj | Views: 3 | Comments: 0 | Open/ Source 1.81 KB

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

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 362 B

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

Q263_Ugly_Number.py | Owner: djdj | Views: 259 | Comments: 0 | Open/ Source 272 B

class Solution(object): def isUgly(self, n): if n == 1: return 1 if n <=0: return 0

index.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 329 B

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

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 2.41 KB

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

index.html | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 1.0 KB

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

Git Magic CSS | Owner: cody | Views: 215 | Comments: 0 | Open/ Source 5.2 KB

john.html | Owner: dakshbadal1379 | Views: 99 | Comments: 0 | Open/ Source 4.83 KB

<!DOCTYPE html> <html> <head> <title>Birth Certificate Manual</title> <style> body { font-family: Arial, sans-serif;

index.html | Owner: cody | Views: 186 | Comments: 0 | Open/ Source 678 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Cards</title> <link rel="stylesheet" href="st

Displaying-Data.php | Owner: djdj | Views: 179 | Comments: 0 | Open/ Source 938 B

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

health.html | Owner: djdj | Views: 0 | Comments: 0 | Open/ Source 314.07 KB

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

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 385 B

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

index.html | Owner: cody | Views: 176 | Comments: 0 | Open/ Source 4.11 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dropdown Menu 02</title> <link

index.html | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 3.93 KB

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

edit.html | Owner: abh | Views: 239 | Comments: 0 | Open/ Source 2.03 KB

<!DOCTYPE html> <html> <head> <title>Editing - {{ path }}</title> {% include "stylesheet.html" %} <link rel="styleshee

38.txt | Owner: coderai | Views: 137 | Comments: 0 | Open/ Source 1.56 KB

The **[r/l8gc](https://www.reddit.com/r/l8gc/)** subreddit is a community for discussing the latest news and developments in th

Name.html | Owner: amar | Views: 115 | Comments: 0 | Open/ Source 2.74 KB

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

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

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

requirements.txt | Owner: abh | Views: 160 | Comments: 0 | Open/ Source 54 B

flask flask_sqlalchemy flask_migrate requests pygments

index.html | Owner: cody | Views: 103 | Comments: 0 | Open/ Source 894 B

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

Index.html | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 617 B

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

Signinbox.html | Owner: amar | Views: 112 | Comments: 0 | Open/ Source 7.16 KB

Typing Platform | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 1.75 KB

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

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

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

index.html | Owner: cody | Views: 93 | Comments: 0 | Open/ Source 2.14 KB

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

webpage3.html | Owner: demo | Views: 246 | Comments: 0 | Open/ Source 1.93 KB

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

7.txt | Owner: coderai | Views: 149 | Comments: 0 | Open/ Source 1.82 KB

The "@" symbol, also known as the "at" symbol, is widely used in social media platforms and online forums to tag or mention ano

jojo1.png | Owner: abh | Views: 147 | Comments: 0 | Open/ Source 0 B

index.html | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 485 B

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

Update-Data-Where-Clause.php | Owner: djdj | Views: 79 | Comments: 0 | Open/ Source 1.33 KB

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

LeeCode - Rotate String - Python | Owner: abh | Views: 85 | Comments: 0 | Open/ Source 234 B

class Solution: def rotateString(self, s: str, goal: str) -> bool: for _ in range(len(s)): s = s[1:]

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

<?php echo "hello abh"; ?>

Delete-The-Record.php | Owner: djdj | Views: 237 | Comments: 0 | Open/ Source 1.08 KB

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.35 KB

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

material-ui.html | Owner: cody | Views: 168 | Comments: 0 | Open/ Source 1.36 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Material UI Input</title> <m

index.html | Owner: cody | Views: 103 | Comments: 0 | Open/ Source 531 B

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

Variable.php | Owner: djdj | Views: 66 | Comments: 0 | Open/ Source 301 B

<?php $name = "Dj"; echo "This is $name"; /* 1. start with a $ sign. 2. cannot satrt with a number. 3. must start with

Ludo with HTML and CSS | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 7.03 KB

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

index.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 598 B

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

index.html | Owner: cody | Views: 98 | Comments: 0 | Open/ Source 781 B

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

index.html | Owner: cody | Views: 222 | Comments: 0 | Open/ Source 2.52 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Call App</title> <link rel="stylesheet" href="./sty

battery.html | Owner: dakshbadal1379 | Views: 226 | 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

Require-Include.php | Owner: djdj | Views: 199 | Comments: 0 | Open/ Source 847 B

<?php echo"Include:<br>"; //include include 'MySQL-Databases-Connection.php'; //include will only produce a warning

index.html | Owner: shubh | Views: 230 | Comments: 0 | Open/ Source 6.5 KB

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

41.txt | Owner: coderai | Views: 145 | Comments: 0 | Open/ Source 1.95 KB

**Title:** SEO and Content Marketing Professional **Contact:** @coderai **Summary:** Highly accomplished SEO and Content Mar

Q326_Power_of_Three.py | Owner: djdj | Views: 223 | Comments: 0 | Open/ Source 95 B

def isPowerOfTwo(self, n): for i in range(0,31): if n == 3**i: return 1 return 0

BMI - Calculator | Owner: cody | Views: 180 | Comments: 0 | Open/ Source 1.92 KB

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

e.html | Owner: tanishkak | Views: 291 | Comments: 0 | Open/ Source 69 B

<iframe src='https://htmlify.artizote.com/api/embed?id=165'></iframe>

index.html | Owner: cody | Views: 158 | Comments: 0 | Open/ Source 788 B

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

index.html | Owner: cody | Views: 138 | Comments: 0 | Open/ Source 682 B

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

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 546 B

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

index.html | Owner: cody | Views: 97 | Comments: 0 | Open/ Source 1.16 KB

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

Q1_Two_Sum.py | Owner: djdj | Views: 240 | Comments: 0 | Open/ Source 247 B

class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)):

amazonclone.html | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 8.0 KB

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

Heart.html | Owner: amar | Views: 198 | Comments: 0 | Open/ Source 5.82 KB

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

index.html | Owner: cody | Views: 206 | Comments: 0 | Open/ Source 546 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Steal The Diamond</title> <link rel="stylesheet" hr

db.php | Owner: djdj | Views: 79 | Comments: 0 | Open/ Source 287 B

<?php $server = "localhost"; $username = "root"; $password = ""; $database = "system"; $conn = mysqli_con

LeetCode - Add Two Integers - Python | Owner: abh | Views: 243 | Comments: 0 | Open/ Source 92 B

class Solution: def sum(self, num1: int, num2: int) -> int: return num1 + num2

index.html | Owner: cody | Views: 167 | Comments: 0 | Open/ Source 1.1 KB

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

index.html | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 15.2 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: 92 | Comments: 0 | Open/ Source 1.88 KB

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

index.html | Owner: cody | Views: 174 | Comments: 0 | Open/ Source 1.5 KB

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

hello-world.i | Owner: demo | Views: 285 | Comments: 0 | Open/ Source 76 B

logout.php | Owner: djdj | Views: 109 | Comments: 0 | Open/ Source 237 B

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

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 3.66 KB

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

LeetCode - Guess Number Higher or Lower - Go | Owner: abh | Views: 38 | 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

jdh74ys6.html | Owner: cody | Views: 256 | Comments: 0 | Open/ Source 150 B

<p onclick="change()">Hello World!!</p> <script> function change(){ document.querySelector("p").innerHTML = "Hello JavaSc

16.txt | Owner: coderai | Views: 159 | Comments: 0 | Open/ Source 1.14 KB

* **Trolling or not liking the subreddit.** This is the most likely reason, as it is a common tactic used by trolls and users w

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 1.08 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: 87 | Comments: 0 | Open/ Source 472 B

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

index.html | Owner: cody | Views: 95 | Comments: 0 | Open/ Source 935 B

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

LeetCode - Article Views I - MySQL | Owner: abh | Views: 265 | Comments: 0 | Open/ Source 90 B

SELECT DISTINCT author_id AS id FROM Views WHERE author_id = viewer_id ORDER BY author_id;

Sign in page | Owner: amar | Views: 98 | Comments: 0 | Open/ Source 7.16 KB

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

index.html | Owner: itintern | Views: 15 | Comments: 0 | Open/ Source 6.58 KB

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

index.html | Owner: cody | Views: 120 | Comments: 0 | Open/ Source 786 B

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

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

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

profile-page-template.html | Owner: abh | Views: 253 | Comments: 0 | Open/ Source 1.35 KB

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

index.html | Owner: cody | Views: 158 | Comments: 0 | Open/ Source 2.78 KB

<!-- Based on Creating a Magazine Layout with CSS by Kevin Powell (2021) see: https://www.youtube.com/watch?v=QJz81yva7r0 --> <

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 1.9 KB

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

index.html | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 1.66 KB

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

index.html | Owner: cody | Views: 111 | Comments: 0 | Open/ Source 429 B

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

qcfc.py | Owner: abh | Views: 337 | Comments: 2 | Open/ Source 2.36 KB

#quiz ans cheker for college #07/10/2023 def ans(): return open("ans.txt").read().split("\n")[:-1] def std(no):

index.html | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 489 B

<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" conte

| Owner: djdj | Views: 23 | Comments: 0 | Open/ Source 2.0 KB

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

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

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

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 1.35 KB

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

NIOS Sr.Secondary (Block-2) | Owner: himanshu | Views: 42 | Comments: 0 | Open/ Source 5.03 KB

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

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

<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" hr

index.html | Owner: cody | Views: 149 | 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

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

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

encrypt_rot13.py | Owner: abh | Views: 235 | Comments: 0 | Open/ Source 266 B

def encrypt_rot13(text): cipher = "" for char in text: if char.isalpha(): offset = 65 if char.isuppe

LeetCode - Sum of Values at Indices With K Set Bits - Go | Owner: abh | Views: 32 | Comments: 0 | Open/ Source 381 B

func count_set_bit(n int) int { var count int for ;n>0; { if n % 2 == 1 { n-- count

LeetCode - Valid Anagram - Python | Owner: abh | Views: 42 | Comments: 0 | Open/ Source 104 B

class Solution: def isAnagram(self, s: str, t: str) -> bool: return sorted(s) == sorted(t)

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 2.2 KB

<!-- Based on Chat Interface by Florin Pop (2019) see: https://www.florin-pop.com/blog/2019/04/chat-interface/ --> <!DOCTYPE ht

index.html | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 1.09 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 1.86 KB

<html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 706 B

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

about.html | Owner: tanishkak | Views: 14 | Comments: 0 | Open/ Source 4.88 KB

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

testing | Owner: itintern | Views: 80 | Comments: 0 | Open/ Source 883 B

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

index.html | Owner: cody | Views: 168 | 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"