added a_mul_by_x_pow_b_into_a

This commit is contained in:
Jean-Philippe Bossuat
2025-01-22 11:18:06 +01:00
parent a50fbc1c74
commit 9c021d3c76
2 changed files with 35 additions and 1 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<executable file>",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}