HTMLify your dreams

Filter Options:
LeetCode - Remove All Adjacent Duplicates In String - Go | Owner: abh | Views: 43 | Comments: 0 | Open/ Source 449 B

func removeDuplicates(s string) string { var stack []rune for _, c := range s { if len(stack) > 0 && stack[le

LeetCode - Find N Unique Integers Sum up to Zero - Go | Owner: abh | Views: 56 | Comments: 0 | Open/ Source 220 B

func sumZero(n int) []int { var ans []int if n%2==1 { ans = append(ans, 0) } for i:=1;len(ans)!=n;i

index.html | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 3.61 KB

<!-- Based on Parallax Landing Page - Rellax.js by Brad Traversy (2020) see: https://www.youtube.com/watch?v=aAxt0Z7IXIo --> <!

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

contact.html | Owner: demo | Views: 349 | Comments: 0 | Open/ Source 1.62 KB

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

index.html | Owner: cody | Views: 150 | Comments: 0 | Open/ Source 387 B

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

LeetCode - Set Mismatch - Go | Owner: abh | Views: 56 | Comments: 0 | Open/ Source 439 B

func count(target int, arr []int) int { var count int for _, n := range arr { if n == target { c

basic-webpage-structure.html | Owner: demo | Views: 299 | Comments: 0 | Open/ Source 178 B

<!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> <h1>Welcome to My Web Page</h1> <p>Th

Landing Page.html | Owner: shubh | Views: 283 | Comments: 0 | Open/ Source 1.52 KB

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

| Owner: itintern | Views: 15 | Comments: 0 | Open/ Source 7.18 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: 175 | Comments: 0 | Open/ Source 699 B

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

LeetCode - Reverse Bits - Go | Owner: abh | Views: 61 | Comments: 0 | Open/ Source 521 B

func uint32_to_bin_s(n uint32) string { var b string for ;n!=0; { if n%2==1 { n-- b

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

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

MySQL-Databases-Connection.php | Owner: djdj | Views: 226 | Comments: 0 | Open/ Source 556 B

<?php //Database Connection /*There are two ways to connect to My SQL Database 1. MySQLi extension (for use only m

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

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

LeetCode - Intersection of Two Linked Lists - Go | Owner: abh | Views: 18 | Comments: 0 | Open/ Source 357 B

/** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode * } */ func

Operator.php | Owner: djdj | Views: 105 | Comments: 0 | Open/ Source 1.7 KB

<?php /*Operators 1. Arithmetic Operator 2. Assignment Operator 3. Comparison Operator 4. Logical Operator */ $a = 10; $b = 5

index.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 808 B

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

LeetCode - Reverse Linked List - Go | Owner: abh | Views: 36 | Comments: 0 | Open/ Source 383 B

// @leet start /** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode *

mean.py | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 303 B

def mean(*nums): s = 0 c = 0 for n in nums: s += n c += 1 return s / c def mean(nums): s =

index.html | Owner: cody | Views: 119 | Comments: 0 | Open/ Source 1.38 KB

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

5.txt | Owner: coderai | Views: 186 | Comments: 0 | Open/ Source 1003 B

**Twitter:** * To tag a user on Twitter, simply type the @ symbol followed by their username. For example, to tag the user @co

index.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 582 B

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

Important topics | Owner: djdj | Views: 716 | Comments: 0 | Open/ Source 3.82 KB

<head> <title>Imp Quetions</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <style> t

index.html | Owner: cody | Views: 137 | Comments: 0 | Open/ Source 378 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: 147 | Comments: 0 | Open/ Source 997 B

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

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

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

index.html | Owner: cody | Views: 194 | Comments: 0 | Open/ Source 2.66 KB

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

setAttribute.html | Owner: shubh | Views: 232 | Comments: 0 | Open/ Source 569 B

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

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,

Mc | Owner: djdj | Views: 520 | 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: 132 | Comments: 0 | Open/ Source 403 B

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

8.txt | Owner: coderai | Views: 157 | Comments: 0 | Open/ Source 1000 B

A Twitter user is an individual who has registered an account on the social media platform Twitter. **Functionality** Twitter

Chatgpt.py | Owner: amar | Views: 383 | Comments: 0 | Open/ Source 2.73 KB

import gradio as gr import openai from kivy.core.clipboard import Clipboard prompt = "Send a message" def chat(promp

index.html | Owner: cody | Views: 106 | Comments: 0 | Open/ Source 1.83 KB

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

LeetCode - Design Browser History - Go | Owner: abh | Views: 14 | Comments: 0 | Open/ Source 1.21 KB

// @leet start type BrowserHistoryNode struct { Url string Back *BrowserHistoryNode Forward *BrowserHistoryNode } t

LeetCode - Check if Numbers Are Ascending in a Sentence - Go | Owner: abh | Views: 22 | Comments: 0 | Open/ Source 561 B

func atoi(s string) int { var n int for _, c := range s { n = (n*10) + int(c-48) } return n } func is_number(s stri

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

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

colorschemes.lua | Owner: abh | Views: 9 | Comments: 0 | Open/ Source 370 B

--[[ Colorschemes ]]-- return { { { "vim/colorschemes"}, { "jnurmine/Zenburn" }, { "altercation/vim

user-files.html | Owner: abh | Views: 239 | Comments: 0 | Open/ Source 144 B

<!-- user-files.html --> {% for file in files %} {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<

index.html | Owner: cody | Views: 169 | Comments: 0 | Open/ Source 1.18 KB

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

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

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

Create-some-new.php | Owner: djdj | Views: 81 | Comments: 0 | Open/ Source 11.77 KB

<?php $add = false; $update = false; $delete = false; // Connecting to the Db $servername = "localhost";

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

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

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

is_happy.py | Owner: abh | Views: 221 | Comments: 0 | Open/ Source 454 B

def is_happy(n: int): n = str(n) while len(n) != 1: s = 0 for d in n: s += int(d)*int(d)

index.html | Owner: cody | Views: 187 | Comments: 0 | Open/ Source 1.5 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: 175 | Comments: 0 | Open/ Source 1.58 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Alphabets Word Pronounce</title> <link rel="stylesh

Auto Update Testing | Owner: abh | Views: 744 | Comments: 0 | Open/ Source 659 B

from textual.app import App from textual.containers import ScrollableContainer from textual.widget import Widget from threadi

index.html | Owner: cody | Views: 108 | Comments: 0 | Open/ Source 1.65 KB

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

| Owner: djdj | Views: 7 | Comments: 0 | Open/ Source 1.11 KB

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

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

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

index.html | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 2.56 KB

<!-- Based on Full Screen Responsive Image Slider by Brad Traversy (2019) see: https://www.youtube.com/watch?v=wWWNrANNO1k -->

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

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

TRX Manager | Owner: abh | Views: 193 | Comments: 0 | Open/ Source 5.1 KB

from datetime import date from os import system, listdir from sys import argv class Transaction: def __init__(self,

LeetCode - Add Two Integers - JavaScript | Owner: abh | Views: 143 | Comments: 0 | Open/ Source 142 B

/** * @param {number} num1 * @param {number} num2 * @return {number} */ var sum = function(num1, num2) { return nu

Calculator | Owner: cody | Views: 215 | Comments: 0 | Open/ Source 2.5 KB

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

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

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

MySQL-Databases-Connection.php | Owner: djdj | Views: 212 | Comments: 0 | Open/ Source 534 B

<?php //Database Connection /*There are two ways to connect to My SQL Database 1. MySQLi extension (for use only m

index.html | Owner: cody | Views: 200 | Comments: 0 | Open/ Source 2.43 KB

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

new.css | Owner: itintern | Views: 48 | Comments: 0 | Open/ Source 12.0 KB

* { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; width: 100

index.html | Owner: cody | Views: 194 | Comments: 1 | Open/ Source 1.79 KB

<!DOCTYPE html> <html> <head> <!-- If you are serving your web app in a path other than the root, change the href valu

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

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

Q7_Reverse_Integer.py | Owner: djdj | Views: 230 | Comments: 0 | Open/ Source 286 B

def reverse(self, x): if x > (2**30) or x < (-2**31)+1: return 0 m = 0 if x < 0: x = x * (-1) m = 1 s = 0

index.html | Owner: cody | Views: 173 | Comments: 0 | Open/ Source 1.06 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Slide Collect Coin </title> <link rel="stylesheet"

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

<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <titl

Q504_Base_7.py | Owner: djdj | Views: 244 | Comments: 0 | Open/ Source 469 B

def convertToBase7(self, num): if num == 0: return "0" s = [] minus = False if num <

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

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Snackbar</title> <link rel="s

index.html | Owner: cody | Views: 108 | Comments: 0 | Open/ Source 586 B

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

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

fs7FrhHe.html | Owner: cody | Views: 234 | Comments: 0 | Open/ Source 25.85 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Chat P2P avec WebRTC</title> </head> <

Insert-Data-In-Table.php | Owner: djdj | Views: 95 | Comments: 0 | Open/ Source 1.53 KB

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

index.html | Owner: cody | Views: 176 | Comments: 0 | Open/ Source 1.04 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: 110 | 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>A

Add-Two-No.php | Owner: djdj | Views: 105 | Comments: 0 | Open/ Source 239 B

<?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($

image to lua | Owner: amar | Views: 63 | Comments: 0 | Open/ Source 9.84 KB

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

is_even.py | Owner: abh | Views: 174 | Comments: 0 | Open/ Source 959 B

TESTCASES = [ { "positional": (2,), "keyword": {}, "return": True, "msg": "", }, {

Name.html | Owner: amar | Views: 139 | 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

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

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

app.py | Owner: abh | Views: 218 | Comments: 0 | Open/ Source 24.99 KB

#HTMLify from flask import * from flask_migrate import * from random import randint, shuffle from hashlib import md5 from os im

index.html | Owner: cody | Views: 121 | Comments: 0 | Open/ Source 1.38 KB

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

index.html | Owner: cody | Views: 106 | Comments: 0 | Open/ Source 2.35 KB

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

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

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

index.html | Owner: cody | Views: 117 | Comments: 0 | Open/ Source 1.42 KB

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

Hello.html | Owner: shivam | Views: 217 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

index.html | Owner: cody | Views: 211 | Comments: 0 | Open/ Source 3.98 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Accordion FAQ</title> <link rel="stylesheet" href="s

index.html | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 729 B

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

I.html | Owner: amar | Views: 35 | Comments: 0 | Open/ Source 3.62 KB

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

48.txt | Owner: coderai | Views: 125 | Comments: 0 | Open/ Source 947 B

**Description:** CoderAI is a subreddit dedicated to artificial intelligence as it relates to coding. It is a place for people

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 3.85 KB

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

bs2.html | Owner: demo | Views: 278 | Comments: 0 | Open/ Source 1.26 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Grid Demo</title> <!-- Add Bootstrap CSS from a CDN --> <link re

CHECK PANGRAM BY C | Owner: sunny_jain | Views: 164 | Comments: 0 | Open/ Source 927 B

//WRITE a program to check if string is pangram? // input-"the quick brown fox jumps over the lazy dog" //output- is a pangra

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

index.html | Owner: khushi | Views: 120 | Comments: 0 | Open/ Source 44.1 KB

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

game.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 814 B

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

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

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

Machine | Owner: djdj | Views: 31 | Comments: 0 | Open/ Source 65 B

<script> location.href="https://amzn.to/429eXX3"; </script>

3D Boxes BackGround | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 698 B

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

index.html | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 1.78 KB

<!Doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dictionary App</title> <meta name="viewport" c

Brook | Owner: light | Views: 0 | Comments: 0 | Open/ Source 4.63 KB

material-ui.html | Owner: cody | Views: 181 | 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: 112 | Comments: 0 | Open/ Source 419 B

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

index.html | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 1019 B

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

Hand Written Assignment -1 of Ecommerce | Owner: djdj | Views: 884 | Comments: 5 | Open/ Source 7.11 MB

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

index.html | Owner: cody | Views: 184 | Comments: 0 | Open/ Source 2.38 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: 181 | Comments: 0 | Open/ Source 8.11 KB

<!-- Based on Hulu Webpage Clone | HTML & CSS by Brad Traversy (2021) see: https://www.youtube.com/watch?v=9OVLaEjY-Rc --> <!DO

index.html | Owner: cody | Views: 180 | 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: 111 | Comments: 0 | Open/ Source 1.04 KB

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

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 516 B

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

Participate-candicates | Owner: djdj | Views: 351 | Comments: 0 | Open/ Source 1.26 KB

From semester I 1. Ansh Kulshrestha 2. Krishna Shen 3. Anuj Singh 4. Ankaj 5. Kuldeep Dubey 6. Abhay Singh 7. Ompal 8.

LeetCode - Find the Largest Almost Missing Integer - Go | Owner: abh | Views: 36 | Comments: 0 | Open/ Source 795 B

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

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

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

Q50_Pow(x,n).py | Owner: djdj | Views: 251 | Comments: 0 | Open/ Source 39 B

def myPow(self, x, n): return x ** n

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 971 B

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

Wikipedia.html | Owner: cody | Views: 81 | Comments: 0 | Open/ Source 1.38 KB

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

44.txt | Owner: coderai | Views: 183 | Comments: 0 | Open/ Source 1.68 KB

**Company Name:** Coderai **Contact Information:** * **Email:** support@coderai.com * **Website:** https://coderai.com/ **Ad

index.html | Owner: cody | Views: 117 | Comments: 0 | Open/ Source 806 B

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

What is Normalization | DBMS | Owner: cody | Views: 387 | Comments: 0 | Open/ Source 15.92 KB

<html> <head> <meta http-equiv=Content-Type content="text/html; charset=utf-8"> <meta name=Generator content="Microsoft Wor

Akhilkap124 | Owner: djdj | Views: 26 | Comments: 0 | Open/ Source 23.46 KB

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

LeetCode - Permutations - Python | Owner: abh | Views: 102 | Comments: 0 | Open/ Source 368 B

class Solution: def permute(self, nums: List[int]) -> List[List[int]]: if len(nums) == 1: return [[nums[0]]]

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

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

Hello-World.php | Owner: djdj | Views: 86 | Comments: 0 | Open/ Source 315 B

<?php echo "Hello World!"; ?> <!-- For embedding/use PHP we have to use <?php ?> all the php code will goes within the <?php

average.py | Owner: abh | Views: 286 | Comments: 0 | Open/ Source 315 B

def average(*nums): s = 0 c = 0 for n in nums: s += n c += 1 return s / c def average(*nums):

LeetCode - Function Composition - JavaScript | Owner: abh | Views: 103 | Comments: 0 | Open/ Source 348 B

/** * @param {Function[]} functions * @return {Function} */ var compose = function(functions) { return functio

Movie Ratings Application | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 683 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: 182 | Comments: 0 | Open/ Source 1.93 KB

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