This file contains 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; | |
using System.Linq; | |
namespace System.Numerics | |
{ | |
public struct BigDecimal : IConvertible, IFormattable, IComparable, IComparable<BigDecimal>, IEquatable<BigDecimal> | |
{ | |
public static readonly BigDecimal MinusOne = new BigDecimal(BigInteger.MinusOne, 0); | |
public static readonly BigDecimal Zero = new BigDecimal(BigInteger.Zero, 0); | |
public static readonly BigDecimal One = new BigDecimal(BigInteger.One, 0); |
This file contains 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
# Tricky REs with ^ and \ | |
# Assign to regexp a regular expression for double-quoted string literals that | |
# allows for escaped double quotes. | |
# Hint: Escape " and \ | |
# Hint: (?: (?: ) ) | |
import re |
This file contains 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
/* | |
___,,___ | |
,d8888888888b,_ | |
_,d889' 8888b, | |
_,d8888' 8888888b, | |
_,d8889' 888888888888b,_ | |
_,d8889' 888888889'688888, /b | |
_,d8889' 88888889' `6888d 6,_ | |
,d88886' _d888889' ,8d b888b, d\ | |
,d889'888, d8889' 8d 9888888Y ) |