Skip to content

Instantly share code, notes, and snippets.

var threes = new List<Three>
{
new Three(ThreeType.Ferocity)
{
ThreeRows = new List<ThreeRow>()
{
new ThreeRow()
{
Priority = 0,
// 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";
@bsthomsen
bsthomsen / SplitInput.vue
Created May 6, 2024 13:31
Simple Split input for OTP in Vue3
<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"