Василий Батмаев
Василий Батмаев
Actual strings are aligned. The problem occurs because the output is inside the `` HTML element. By default, it has the property `font-family: monospace`. Which monospace font will be used...
The problem occurs in two scenarios: 1. ```python circuit = cirq.Circuit([cirq.CZ(q0, q1)] * 200) print(circuit) # calls circuit.__str__ # ``` In the first scenario, we can't do anything since `circuit.__str__()`...
Вы правы. Сейчас сделаю
Может: ```js let regexp = /"(\\.|[^"\\])*"/g; // Ваше решение let str = ' .. \\"a" .. '; // Поставим обратный слэш перед открывающей кавычкой alert( str.match(regexp) ); // "a" //...
Thank you very much
I use Dual numbers for automatic differentiation. I mentioned Complex numbers only because with them the issue is simpler to reproduce, since they are included in the standard library. -------...