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
| //Try this | |
| type Folder = { | |
| Name:string | |
| Size:int64 | |
| NumFiles:int64 | |
| AvgSize:float | |
| DistinctExt:string list | |
| } | |
| open System.IO |
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 outputs the largest unique set of characters that can be removed | |
| from this paragraph without letting its length drop below 50. | |
| For example: [‘H’, ‘i’, ‘!’, ‘ ’] | |
| */ | |
| //Exception based on paragraph length | |
| function ParagraphLengthException(message){ | |
| this.name = "ParagraphLengthException" | |
| this.message = message; |
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
| using System; | |
| namespace authtest | |
| { | |
| class AccessToken | |
| { | |
| public string access_token { get; set; } | |
| public string token_type { get; set; } | |
| public long expires_in { get; set; } | |
| } |
NewerOlder