Combinations | Alt | Alt + Ctrl | Alt + Shift | Alt + Shift + Ctrl | Right Alt |
---|---|---|---|---|---|
A | á | à | Á | À | ã |
E | é | è | É | È | € |
I | í | ì | Í | Ì | |
O | ó | ò | Ó | Ò | õ |
U | ú | ù | Ú | Ù |
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
class Either<TLeft, TRight> { | |
protected leftValue: TLeft = null; | |
protected rightValue: TRight = null; | |
static left<T>(value: T) { | |
const either = new Either<T, any>(); | |
either.leftValue = value; | |
return either; | |
} |
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
const words = ["cat", "act", "tac", "art", "tar"]; | |
const expectedOutput = { | |
"act": ["cat", "act", "tac"], | |
"atr": ["art", "tar"], | |
} | |
const sortedWords = words | |
.map(word => word.split('')) | |
.map(array => array.sort()) |
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
namespace FitLivre.DataStructures | |
{ | |
public class RecurrentDateTimeOffset | |
{ | |
private readonly RecurrentDateTimeKind _recurrencyKind; | |
private readonly DateTimeOffset[]? _fixedFiniteOccurrences; | |
private readonly RecurrentWeekDayAndTime[]? _perWeekOccurrences; | |
private readonly RecurrentMonthDayAndTime[]? _perMonthOccurrences; | |
private readonly RecurrentYearMonthDayAndTime[]? _perYearOccurrences; | |
private readonly TimeSpan _tolerance; |
OlderNewer