This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="verification-code"> | |
<div class="verification-code-inputs flex gap-2"> | |
<template | |
v-for="(v, index) in values" | |
:key="index" | |
> | |
<input | |
class="focus-within:border-primary focus-within:outline-primary w-full rounded border text-center text-xl font-semibold leading-[80px] focus-within:outline-1" | |
:autoFocus="autoFocus && index === autoFocusIndex" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Write a program that prints the numbers from 1 to 100. | |
// But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". | |
// For numbers which are multiples of both three and five print "FizzBuzz". | |
for (var i = 1; i <= 100; i++) { | |
var output = ""; | |
if (i % 3 == 0) { | |
output += "Fizz"; | |
} | |
if (i % 5 == 0) { | |
output += "Buzz"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var threes = new List<Three> | |
{ | |
new Three(ThreeType.Ferocity) | |
{ | |
ThreeRows = new List<ThreeRow>() | |
{ | |
new ThreeRow() | |
{ | |
Priority = 0, |